home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / ghostscr / gs252ini.zip / README.DOC < prev    next >
Text File  |  1992-09-19  |  4KB  |  123 lines

  1.    Copyright (C) 1990, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, readme.doc, describes problems and new features in the
  23. current release of Ghostscript.  This file describes version 2.5.2 of
  24. Ghostscript.
  25.  
  26. For an overview of Ghostscript and a list of the documentation files, see
  27. README.
  28.  
  29. New features
  30. ============
  31.  
  32. Note: this is not a complete list of new features.  See the most recent
  33. section of NEWS for full details.
  34.  
  35. The DeskJet and LaserJet drivers (finally) work correctly.
  36.  
  37. You can now set all settable device properties (OutputFile,
  38. BufferSpace, MaxBitmap) using -s or -d on the command line.
  39.  
  40. Known problems
  41. ==============
  42.  
  43. Interpreter
  44. -----------
  45.  
  46. The interactive interpreter requires that every statement fit on a line,
  47. i.e., you can't have an unpaired ( or {.
  48.  
  49. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  50. the display mode.
  51.  
  52. Operators
  53. ---------
  54.  
  55. The Ghostscript language does not include the following operators of the
  56. PostScript language:
  57.  
  58.     resetfile
  59.     banddevice, renderbands (these are obsolete)
  60.  
  61. The following are not implemented completely:
  62.  
  63.     %statementedit (file name): interpreted as equivalent to
  64. %lineedit.
  65.  
  66. Most of the new color operators, particularly those that support the CMYK
  67. color model, are implemented as Ghostscript language procedures, and they
  68. essentially emulate CMYK using RGB.
  69.  
  70. The following operators that expect arrays won't accept packed arrays:
  71.     definefont (Subrs (type 1 fonts))
  72.     setdash (dash pattern)
  73.     setcachedevice (bounding box)
  74.     makeimagedevice (palette)
  75.  
  76. The file operator only recognizes modes r and w, not the newer modes r+,
  77. w+, a, and a+.
  78.  
  79. Limitations
  80. -----------
  81.  
  82. Floating point exceptions terminate Ghostscript, rather than producing a
  83. rangecheck error.
  84.  
  85. Some access checks aren't implemented.
  86.  
  87. copypage does nothing in the MS-DOS implementation, and merely
  88. synchronizes the X connection in the Unix implementation.  showpage is a
  89. procedure that does a copypage and then beeps the bell and waits for the
  90. user to hit a key. (copypage does do the right thing for printers.)
  91.  
  92. Graphics bugs
  93. -------------
  94.  
  95. strokepath produces incorrect output for dashed lines.
  96.  
  97. The implementation only looks at the PaintType of the font when doing
  98. show, not when doing charpath.  Because of this, stroked fonts don't work
  99. correctly with charpath.
  100.  
  101. arcto gives an error for negative radii.
  102.  
  103. Changing the contents of the Encoding array or the Metrics dictionary of a
  104. font dynamically doesn't produce the expected result (may have no effect)
  105. if character caching is enabled.
  106.  
  107. Halftone patterns "flip over" at the 50% coverage point, producing
  108. anomalous visual effects on some color devices.
  109.  
  110. We have not been able to test 2-, 4-, and 16-bit memory devices as
  111. thoroughly as 1-, 8-, 24-, and 32-bit devices; please report any
  112. problems.
  113.  
  114. Opening more than one window device at the same time doesn't work.
  115. This is the case for both X Windows and Microsoft Windows.
  116.  
  117. Non-graphics bugs
  118. -----------------
  119.  
  120. restore doesn't properly undo currentgstate.
  121.  
  122. copy doesn't handle gstates.
  123.